home *** CD-ROM | disk | FTP | other *** search
- function fushigiOn()
- {
- w = _width;
- h = _height;
- w2 = stage_w / w * 100;
- h2 = stage_h / h * 100;
- x = _X;
- y = _Y;
- setProperty("_parent", _xscale, w2);
- setProperty("_parent", _yscale, h2);
- setProperty("_parent", _X, (- x + w / 2) * w2 / 100);
- setProperty("_parent", _Y, (- y + h / 2) * h2 / 100);
- }
- function fushigiOff()
- {
- setProperty("_parent", _xscale, 100);
- setProperty("_parent", _yscale, 100);
- setProperty("_parent", _X, 0);
- setProperty("_parent", _Y, 0);
- }
-